home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / DIKUMUD.ZIP / PARSER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-30  |  583 b   |  28 lines

  1. /*
  2.   SillyMUD Distribution V1.1b             (c) 1993 SillyMUD Developement
  3.  
  4.   See license.doc for distribution terms.   SillyMUD is based on DIKUMUD
  5. */
  6.  
  7. #define MAGIC    96  /* Magic number for the hash table */
  8.  
  9.  
  10. typedef struct command_node NODE;
  11.  
  12. struct command_node {
  13.    char *name;
  14.    void (*func)(struct char_data *ch, char *arg, int cmd);
  15.    int number;
  16.    byte min_pos;
  17.    byte min_level;
  18.    byte log;
  19.    struct command_node *next;
  20.    struct command_node *previous;
  21. };
  22.  
  23. struct radix_list {
  24.    struct command_node *next;
  25.    unsigned short int number;
  26.    byte max_len;
  27. };
  28.